--- /dev/null
+#!/usr/bin/python
+
+# Copyright (C) International Business Machines Corp., 2005
+# Author: Dan Smith <danms@us.ibm.com>
+
+from XmTestLib import *
+
+MEM = 16
+
+domain = XmTestDomain(extraOpts={"memory":"%i" % MEM})
+
+try:
+ domain.start()
+except DomainError, e:
+ FAIL("Unable to start a domain with %i MB" % MEM)
+
+try:
+ console = XmConsole(domain.getName())
+ console.sendInput("input")
+ console.runCmd("ls")
+except ConsoleError, e:
+ if e.reason == RUNAWAY:
+ FAIL("Bug #380: Starting a console with %i MB crashed the console daemon" % MEM)
+ else:
+ FAIL("Starting a console with %i MB failed: domain dies immediately!" % MEM)
+
+domain.destroy()
11_create_concurrent_pos.test \
12_create_concurrent_stress_pos.test \
13_create_multinic_pos.test \
- 14_create_blockroot_pos.test
-
+ 14_create_blockroot_pos.test \
+ 15_create_smallmem_pos.test
DISABLED_TESTS = 05_create_noroot_noram_neg.test